 

:root {
  /* Light mode colors */
  --bg-overlay: rgba(0, 0, 0, 0.7);
  --bg-modal: #000000;
  --bg-option: #0f0f0f;
  --bg-option-hover: #1a1a1a;
  --bg-button-hover: #2a2a2a;
  --border-color: #333333;
  --text-primary: #e5e5e5;
  --text-secondary: #d4d4d4;
  --text-tertiary: #a1a1a1;
  --text-tertiary-hover: #d4d4d4;
  --page-bg: #0f0f0f;
  --btn-primary-bg: #3b82f6;
  --btn-primary-hover: #60a5fa;
}
.claim-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #0f172a;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
body[data-theme="dark"] {
  /* Dark mode colors */
  --bg-overlay: rgba(0, 0, 0, 0.7);
  --bg-modal: #000000;
  --bg-option: rgb(12, 12, 12);
  --bg-option-hover: #181818;
  --bg-button-hover: #0e0e0e;
  --border-color: #333333;
  --text-primary: #3d3838;
  --text-secondary: #d4d4d4;
  --text-tertiary: #a1a1a1;
  --text-tertiary-hover: #d4d4d4;
  --page-bg: #0f0f0f;
  --btn-primary-bg: #3b82f6;
  --btn-primary-hover: #60a5fa;
}

/* Page Container */
.page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
  gap: 20px;
}

.page-container h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.page-container p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

/* Connect Wallet Button */


.connect-wallet-btn:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.connect-wallet-btn:active {
  transform: translateY(0);
}

.connect-wallet-btn svg {
  stroke-width: 2;
}

/* Modal Overlay */
.overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.show {
  opacity: 1;
}

.overlay.show .wallet-modal {
  transform: scale(1);
  opacity: 1;
}

.wallet-modal {
  background: var(--bg-modal);
  border-radius: 20px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: all 0.3s ease;
  transform: scale(0.9);
  opacity: 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 20px;
  border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
  font-size: 18px;
  font-weight: 600;
  color:rgb(224, 224, 224);
  flex: 1;
  text-align: left;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.help-btn,
.close-btn,
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: all 0.2s;
  border-radius: 8px;
  position: relative;
}

.help-btn:hover,
.close-btn:hover,
.theme-toggle:hover {
  color: var(--text-primary);
  background: var(--bg-button-hover);
}

/* Theme toggle icon visibility */
body[data-theme="light"] .theme-toggle .moon-icon {
  display: none;
}

body[data-theme="light"] .theme-toggle .sun-icon {
  display: block;
}

body[data-theme="dark"] .theme-toggle .sun-icon {
  display: none;
}

body[data-theme="dark"] .theme-toggle .moon-icon {
  display: block;
}

.wallet-list {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wallet-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--bg-option);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  width: 100%;
}

.wallet-option:hover {
  background: var(--bg-option-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(61, 61, 61, 0.08);
}

.wallet-option:active {
  transform: translateY(0);
}

.wallet-name {
  font-family: sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-secondary);
  text-align: left;
  transition: color 0.3s ease;
}

.wallet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 28px;
}

.wallet-icon svg {
  display: block;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.wallet-footer {
  padding: 5px 5px 5px;
  border-top: 1px solid var(--border-color);
}

.different-wallet-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-tertiary);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  font-family: inherit;
}

.different-wallet-btn:hover {
  background: var(--bg-button-hover);
  color: var(--text-tertiary-hover);
}

.different-wallet-btn svg {
  width: 16px;
  height: 16px;
}

/* Responsive */
@media (max-width: 480px) {
  .wallet-modal {
    max-width: 100%;
    border-radius: 20px;
  }

  .modal-header h2 {
    font-size: 16px;
  }

  .wallet-option {
    padding: 14px 16px;
  }

  .wallet-name {
    font-size: 14px;
  }

  .wallet-icon svg {
    width: 28px;
    height: 28px;
  }
}
.ctu-button {
      height: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-blue));
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease 0.8s backwards;
}

.ctu-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.4);
}

.ctu-button.secondary {
    background: rgba(0, 212, 170, 0.1);
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
}

.ctu-button.secondary:hover {
    background: rgba(0, 212, 170, 0.2);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.2);
}
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}